ee69f66fe49880758a639a3336df1b32e7175c5d,src/net/java/sip/communicator/impl/neomedia/codec/video/SwScaler.java,SwScaler,setInputFormat,#Format#,436

Before Change


            = ((format instanceof VideoFormat)
                    && (((VideoFormat) format).getSize() == null))
                ? null // size is required
                : super.setInputFormat(format);

        if (inputFormat != null)
        {

After Change


    {
        Format inputFormat
            = (format instanceof VideoFormat)
                ? super.setInputFormat(format)
                : null /* A size is not required, the input must be video. */;

        if (inputFormat != null)
        {